home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 4
/
FM Towns Free Software Collection 4 - Disc 1.iso
/
pao
/
towns
/
cdplay
/
src
/
mostype.c
< prev
next >
Wrap
Text File
|
1991-10-18
|
2KB
|
60 lines
/* << High C V1.4 >> **********************************************************
**
** Mouse Cursol 定義 ルーチン
**
** 1991.03.18 : CREATE
** 1991.03.18 : FINISH
**
** < HISTORY >
** 1991.03.18 : CREATE
**
** < note > : TABS = 4
**
** All Rights Reserved, Copyright (C) Y.Hirata 1991.
**
** Programmed by Y.Hirata ( Nifty ID : NAB03321 )
**
** Spetial thanks : ただひろ(K.Shimizu)
**
******************************************************************************/
#include <mos.h>
#include "mostype.h"
char mostype1[66] = { 2, 16,
0x00, 0x00, 0x7f, 0x80, 0x7f, 0xc0, 0x7f, 0xe0,
0x7f, 0xf0, 0x7f, 0xf8, 0x7f, 0xfc, 0x7f, 0xe0,
0x7f, 0xe0, 0x3f, 0xe0, 0x1f, 0xc0, 0x0e, 0x00,
0x06, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x7f, 0x7f, 0xbf, 0x7f, 0xdf, 0x7f, 0xef,
0x7f, 0xf7, 0x7f, 0xfb, 0x7f, 0xfd, 0x7f, 0xe0,
0x7f, 0xef, 0xbf, 0xef, 0xdf, 0xdf, 0xee, 0x1f,
0xf6, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xfe, 0xff
};
char mostype2[66] = { 2, 16,
0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x60, 0x00,
0x70, 0x00, 0x78, 0x00, 0x7c, 0x00, 0x7e, 0x00,
0x7f, 0x00, 0x7f, 0x80, 0x73, 0xc0, 0x60, 0xe0,
0x40, 0x30, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00,
0x7f, 0xff, 0x3f, 0xff, 0x1f, 0xff, 0x0f, 0xff,
0x07, 0xff, 0x03, 0xff, 0x01, 0xff, 0x00, 0xff,
0x00, 0x7f, 0x00, 0x3f, 0x00, 0x1f, 0x0c, 0x0f,
0x1f, 0x07, 0x3f, 0xc3, 0x7f, 0xf1, 0xff, 0xfc
};
void mostype( int no )
{
switch ( no ) {
case MOSTYPE_TEST :
MOS_type( 1,0,0,mostype1 );
break ;
case MOSTYPE_STANDARD :
MOS_type( 1,0,0,mostype2 );
}
}